home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / ker301ex.arc / MSKPATCH.HLP < prev    next >
Text File  |  1990-07-19  |  4KB  |  88 lines

  1. CORRECTING MS-DOS KERMIT 3.00 PROBLEMS IN THE FIELD
  2.  
  3. MS-DOS Kermit version 3.00 for the IBM PC and PS/2 families, issued on 16
  4. January 1990, has a number of errors which can be corrected without having to
  5. obtain a new copy of the the program itself.  Instead, a text file named
  6. MSKERMIT.PCH can stored in the current working directory or elsewhere within a
  7. directory appearing in the PATH= string.  When the simple instructions below
  8. are followed Kermit will read the file MSKERMIT.PCH and make changes to the
  9. copy of itself which is currently running in memory.  The executable Kermit
  10. program file on your disk is not modified.
  11.  
  12. A word of caution to all users.  These patches should be applied only to the
  13. executable version of 3.00 or 3.01 that was obtained from Columbia or from the
  14. first edition of "Using MS-DOS Kermit" (KERMIT.EXE on disk in the book, or
  15. MSVIBM.EXE over networks from Columbia Kermit Distribution, or translated from
  16. the Columbia MSVIBM.BOO file), and NOT to a version you built yourself from
  17. the source using a possibly different assembler and linker!
  18.  
  19. INSTRUCTIONS
  20.  
  21.  1. Make sure you have the version of Kermit for which these patches are
  22.     intended.  Run Kermit and type the VERSION command.  It should say
  23.     IBM-PC MS-Kermit: 3.00 16 Jan 1990.  If it says anything else, these
  24.     patches are not for you.
  25.  
  26.  2. Obtain a copy of the file MSR300.PCH or MSR301.PCH from Kermit
  27.     Distribution at Columbia University.  Don't trust copies of this file that
  28.     came from anywhere else!  Those who are connected to Columbia through the
  29.     academic computer networks can transfer this file in text mode to a local
  30.     computer host, and then use Kermit in text mode to transfer it to their
  31.     PCs.
  32.  
  33.  3. If you got your copy of MSR30x.PCH on paper from Columbia University, you
  34.     must type the file in to your PC using a text editor or word processor.
  35.     Two words of caution here:  First, use the "ASCII" or "TEXT-ONLY" option
  36.     of your word processor.  Second, be very careful not to make any
  37.     typographical errors.  Double check your typing.
  38.         
  39.  4. Copy the MSR30x.PCH file to the same disk and directory where you keep
  40.     your MSKERMIT.INI file, and name it MSKERMIT.PCH, for example:
  41.  
  42.       C>copy msr301.pch \kermit\mskermit.pch
  43.  
  44.  5. Edit your MSKERMIT.INI file.  Insert the command PATCH as the first
  45.     and second commands in the file.  For example, the MSKERMIT.INI file which
  46.     is distributed with version 3.0 starts like this:
  47.  
  48. ; FILE MSKERMIT.INI
  49. ;
  50. ; Sample initialization file for MS-DOS Kermit 3.00.
  51. ; Christine M. Gianone, January 1990
  52.  
  53. echo MS-DOS Kermit 3.0 initialization file...
  54.  
  55.     For version 3.00, insert two PATCH commands just before the ECHO command:  
  56.   
  57. ; FILE MSKERMIT.INI
  58. ;
  59. ; Sample initialization file for MS-DOS Kermit 3.00.
  60. ; Christine M. Gianone, January 1990
  61.  
  62. patch
  63. patch
  64. echo MS-DOS Kermit 3.0 initialization file (Patch Level 25)...
  65.  
  66.     For version 3.01 and later, just insert one PATCH command.
  67.  
  68.     Note the addition of the patch level in the greeting given by the
  69.     ECHO command, to remind you that you are running a patched version.
  70.     The patch level number is the number of the last patch (see below).
  71.  
  72.  6. Now CD to your normal working directory, type "kermit" to start the
  73.     Kermit program, and check to see that new initialization file greeting
  74.     is displayed.
  75.  
  76. That's it!  If the patching process succeeds then no messages are issued.
  77. However, if the file is not typed correctly Kermit may issue a strong warning
  78. and terminate, or if subtle typographical errors are present then Kermit may
  79. behave very strangely.  If either of these situations occurs recheck the file
  80. MSKERMIT.PCH, and/or contact Columbia University for subsequent advice.  Don't
  81. use a suspect patch file!
  82.  
  83. For a numbered list of patches with a description of each one, see the
  84. brief comments in the MSKERMIT.PCH file, or the more length comments in the
  85. MSKERM.BWR file.
  86.  
  87. End of MSKPATCH.HLP
  88.